UNPKG

308 BTypeScriptView Raw
1import { Type } from './abstract';
2export declare class TypeOperatorType extends Type {
3 readonly type: string;
4 target: Type;
5 readonly operator = "keyof";
6 constructor(target: Type);
7 clone(): Type;
8 equals(type: TypeOperatorType): boolean;
9 toObject(): any;
10 toString(): string;
11}