19 lines
422 B
TypeScript
19 lines
422 B
TypeScript
import type { DocParagraphStylesCatalog } from "@/lib/drive/docs-paragraph-styles"
|
|
|
|
export type DocsFontDefinition = {
|
|
name: string
|
|
stack: string
|
|
source?: string
|
|
url?: string
|
|
}
|
|
|
|
export type DocsFontsResponse = {
|
|
fonts: DocsFontDefinition[]
|
|
}
|
|
|
|
export type DocParagraphStylesState = {
|
|
documentStyles: DocParagraphStylesCatalog
|
|
userStyles: DocParagraphStylesCatalog
|
|
mergedCatalog: DocParagraphStylesCatalog
|
|
}
|