jsii-docgen
Version: 
generates api docs for jsii modules
11 lines (10 loc) • 358 B
TypeScript
import * as reflect from 'jsii-reflect';
import { StructSchema } from '../schema';
import { Transpile } from '../transpile/transpile';
export declare class Struct {
    private readonly iface;
    private readonly transpiled;
    private readonly properties;
    constructor(transpile: Transpile, iface: reflect.InterfaceType);
    toJson(): StructSchema;
}