docx-rs/docx-wasm/js/json/styles.ts

18 lines
373 B
TypeScript
Raw Normal View History

import { RunPropertyJSON } from "./run";
import { ParagraphPropertyJSON } from "./paragraph";
export type StyleJSON = {
styleId: string;
name: string;
styleType: string;
runProperty: RunPropertyJSON;
paragraphProperty: ParagraphPropertyJSON;
};
2020-02-27 20:12:36 +02:00
export type StylesJSON = {
docDefaults: {
runPropertyDefault: RunPropertyJSON;
};
styles: StyleJSON[];
};