UNPKG

@rr0/cms

Version:

RR0 Content Management System (CMS)

10 lines (9 loc) 278 B
export type ReadMethod = "backup" | "fetch"; export type WriteMethod = "backup" | "pages"; /** * The actions to perform when processing an external datasource. */ export type ChronologyReplacerActions = { readonly read: ReadMethod[]; readonly write: WriteMethod[]; };