export-ref.d.ts 260 Bytes
Newer Older
jatuporn Tonggasem's avatar
jatuporn Tonggasem committed
1 2 3 4 5 6 7 8 9
export declare class ExportStringRef<T> {
    private _ref?;
    private _module;
    private _path;
    constructor(ref: string, parentPath?: string, inner?: boolean);
    readonly ref: T | undefined;
    readonly module: string;
    readonly path: string;
}