This commit is contained in:
crusader 2018-09-05 19:04:42 +09:00
parent 0762bde89e
commit 2e19e4f5f7
2 changed files with 1 additions and 2 deletions

View File

@ -5,7 +5,7 @@ export interface Type<T> extends Function {
} }
export declare type IdentityType<T> = T | symbol; export declare type IdentityType<T> = T | symbol;
export declare type PropertyKeyType = IdentityType<string>; export declare type PropertyKeyType = IdentityType<string | number>;
export declare type MetadataKeyType = IdentityType<string>; export declare type MetadataKeyType = IdentityType<string>;
export enum PrimitiveType { export enum PrimitiveType {

View File

@ -34,5 +34,4 @@ export abstract class AnnotationUtils {
return undefined; return undefined;
} }
} }