mirror of
https://github.com/standardnotes/server
synced 2026-07-14 09:01:33 -04:00
5 lines
215 B
TypeScript
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
|
|
}
|