Files
standardnotes-server/packages/common/src/Domain/Content/ContentDecoderInterface.ts
T
2022-07-06 12:02:39 +02:00

5 lines
215 B
TypeScript

export interface ContentDecoderInterface {
decode(content: string, leftPaddingLength?: number): Record<string, unknown>
encode(content: Record<string, unknown>, leftPaddingLength?: number): string | undefined
}