2020-02-13 09:14:06 +02:00
|
|
|
import { RunPropertyJSON } from "./run";
|
|
|
|
import { ParagraphPropertyJSON } from "./paragraph";
|
2020-10-30 13:29:06 +02:00
|
|
|
import { TablePropertyJSON } from "./table";
|
2020-02-13 09:14:06 +02:00
|
|
|
|
|
|
|
export type StyleJSON = {
|
|
|
|
styleId: string;
|
|
|
|
name: string;
|
|
|
|
styleType: string;
|
|
|
|
runProperty: RunPropertyJSON;
|
|
|
|
paragraphProperty: ParagraphPropertyJSON;
|
2020-10-30 13:29:06 +02:00
|
|
|
tableProperty: TablePropertyJSON;
|
|
|
|
basedOn: string | null;
|
2020-02-13 09:14:06 +02:00
|
|
|
};
|
|
|
|
|
2020-02-27 20:12:36 +02:00
|
|
|
export type StylesJSON = {
|
2020-02-13 09:14:06 +02:00
|
|
|
docDefaults: {
|
|
|
|
runPropertyDefault: RunPropertyJSON;
|
|
|
|
};
|
|
|
|
styles: StyleJSON[];
|
|
|
|
};
|