21 lines
480 B
TypeScript
21 lines
480 B
TypeScript
import { RunPropertyJSON } from "./run";
|
|
import { ParagraphPropertyJSON } from "./paragraph";
|
|
import { TablePropertyJSON } from "./table";
|
|
|
|
export type StyleJSON = {
|
|
styleId: string;
|
|
name: string;
|
|
styleType: string;
|
|
runProperty: RunPropertyJSON;
|
|
paragraphProperty: ParagraphPropertyJSON;
|
|
tableProperty: TablePropertyJSON;
|
|
basedOn: string | null;
|
|
};
|
|
|
|
export type StylesJSON = {
|
|
docDefaults: {
|
|
runPropertyDefault: RunPropertyJSON;
|
|
};
|
|
styles: StyleJSON[];
|
|
};
|