r2-utils-js
Version:
Readium 2 'utils' for NodeJS (TypeScript)
14 lines (13 loc) • 499 B
TypeScript
import { IPropertyConverter } from "../converters/converter";
import { FunctionType, IXPathSelectorItem, IXmlNamespaces } from "../types";
export declare class PropertyDefinition {
objectType: FunctionType | undefined;
array: boolean;
set: boolean;
readonly: boolean;
writeonly: boolean;
converter: IPropertyConverter | undefined;
xpathSelector: string | undefined;
xpathSelectorParsed: IXPathSelectorItem[] | undefined;
namespaces: IXmlNamespaces | undefined;
}