Files
standardnotes-server/packages/syncing-server/src/Domain/Item/ContentDecoderInterface.ts
T

5 lines
159 B
TypeScript

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