Skip to content

Commit f93dc9b

Browse files
refactor(guardIs): add GuardDefined
1 parent f09aefa commit f93dc9b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/type/src/guard/interface/guard-is.interface.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { GuardArray } from '../type/guard-array.type';
22
import { GuardBigInt } from '../type/guard-big-int.type';
33
import { GuardBoolean } from '../type/guard-boolean.type';
44
import { GuardClass } from '../type/guard-class.type';
5+
import { GuardDefined } from '../type/guard-defined.type';
56
import { GuardFunction } from '../type/guard-function.type';
67
import { GuardKey } from '../type/guard-key.type';
78
import { GuardNumber } from '../type/guard-number.type';
@@ -20,6 +21,7 @@ export interface GuardIs {
2021
bigint: GuardBigInt;
2122
boolean: GuardBoolean;
2223
class: GuardClass;
24+
defined: GuardDefined;
2325
function: GuardFunction;
2426
instance: GuardInstance;
2527
key: GuardKey;

0 commit comments

Comments
 (0)