UNPKG

asposewordscloud

Version:
28 lines (27 loc) 824 B
import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; export declare const importsMapBookmarksOutlineLevelData: {}; /** * Container class for individual bookmarks outline level. */ export declare class BookmarksOutlineLevelData implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the bookmark's level. */ bookmarksOutlineLevel: number; /** * Gets or sets the bookmark's name. */ name: string; constructor(init?: Partial<BookmarksOutlineLevelData>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }