/** * Returns the type of a value. * @name typeOf(value: any): string */ export declare function typeOf(value: string): 'String'; export declare function typeOf(value: number): 'Number'; export declare function typeOf(value: null): 'Null'; export declare function typeOf(value: undefined): 'Undefined'; export declare function typeOf(value: undefined): 'Undefined'; export declare function typeOf(value: any): string; //# sourceMappingURL=typeOf.d.ts.map