mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
5 lines
159 B
TypeScript
5 lines
159 B
TypeScript
export interface ContentDecoderInterface {
|
|
decode(content: string): Record<string, unknown>
|
|
encode(content: Record<string, unknown>): string | undefined
|
|
}
|