jsii-docgen
Version: 
generates api docs for jsii modules
10 lines (9 loc) • 332 B
TypeScript
import * as reflect from 'jsii-reflect';
import { PropertySchema } from '../schema';
import { Transpile } from '../transpile/transpile';
export declare class Property {
    private readonly property;
    private readonly transpiled;
    constructor(transpile: Transpile, property: reflect.Property);
    toJson(): PropertySchema;
}