Type Alias ILevelsOptions

ILevelsOptions: {
    alignment?: typeof AlignmentType[keyof typeof AlignmentType];
    format?: typeof LevelFormat[keyof typeof LevelFormat];
    isLegalNumberingStyle?: boolean;
    level: number;
    start?: number;
    style?: {
        paragraph?: ILevelParagraphStylePropertiesOptions;
        run?: IRunStylePropertiesOptions;
    };
    suffix?: typeof LevelSuffix[keyof typeof LevelSuffix];
    text?: string;
}