export-ref.d.ts 260 B

123456789
  1. export declare class ExportStringRef<T> {
  2. private _ref?;
  3. private _module;
  4. private _path;
  5. constructor(ref: string, parentPath?: string, inner?: boolean);
  6. readonly ref: T | undefined;
  7. readonly module: string;
  8. readonly path: string;
  9. }