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";
|
2021-03-25 08:30:33 +02:00
|
|
|
import { TableCellPropertyJSON } from "..";
|
2022-09-09 05:10:05 +03:00
|
|
|
import { StyleType } from "../style";
|
2020-02-13 09:14:06 +02:00
|
|
|
|
|
|
|
export type StyleJSON = {
|
|
|
|
styleId: string;
|
|
|
|
name: string;
|
2022-09-09 05:10:05 +03:00
|
|
|
styleType: StyleType;
|
2020-02-13 09:14:06 +02:00
|
|
|
runProperty: RunPropertyJSON;
|
|
|
|
paragraphProperty: ParagraphPropertyJSON;
|
2020-10-30 13:29:06 +02:00
|
|
|
tableProperty: TablePropertyJSON;
|
2021-03-25 08:30:33 +02:00
|
|
|
tableCellProperty: TableCellPropertyJSON;
|
2020-10-30 13:29:06 +02:00
|
|
|
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: {
|
2020-12-14 10:44:47 +02:00
|
|
|
runPropertyDefault: {
|
|
|
|
runProperty: RunPropertyJSON;
|
|
|
|
};
|
2020-02-13 09:14:06 +02:00
|
|
|
};
|
|
|
|
styles: StyleJSON[];
|
|
|
|
};
|