Skip to content

Commit 15c5957

Browse files
committed
better export path
1 parent e244082 commit 15c5957

File tree

5 files changed

+49
-49
lines changed

5 files changed

+49
-49
lines changed

as.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
./as/ NOTE: This file is generated by gen-mod.ts
2+
export { asOptional as Optional } from "./as/optional.ts";
3+
export { asReadonly as Readonly } from "./as/readonly.ts";
4+
export { asUnoptional as Unoptional } from "./as/optional.ts";
5+
export { asUnreadonly as Unreadonly } from "./as/readonly.ts";

as/as.ts

Lines changed: 0 additions & 5 deletions
This file was deleted.

is.ts

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
// NOTE: This file is generated by gen-mod.ts
2+
export { isAny as Any } from "./is/any.ts";
3+
export { isArray as Array } from "./is/array.ts";
4+
export { isArrayOf as ArrayOf } from "./is/array_of.ts";
5+
export { isAsyncFunction as AsyncFunction } from "./is/async_function.ts";
6+
export { isBigint as Bigint } from "./is/bigint.ts";
7+
export { isBoolean as Boolean } from "./is/boolean.ts";
8+
export { isCustomJsonable as CustomJsonable } from "./is/custom_jsonable.ts";
9+
export { isFunction as Function } from "./is/function.ts";
10+
export { isInstanceOf as InstanceOf } from "./is/instance_of.ts";
11+
export { isIntersectionOf as IntersectionOf } from "./is/intersection_of.ts";
12+
export { isJsonable as Jsonable } from "./is/jsonable.ts";
13+
export { isLiteralOf as LiteralOf } from "./is/literal_of.ts";
14+
export { isLiteralOneOf as LiteralOneOf } from "./is/literal_one_of.ts";
15+
export { isMap as Map } from "./is/map.ts";
16+
export { isMapOf as MapOf } from "./is/map_of.ts";
17+
export { isNull as Null } from "./is/null.ts";
18+
export { isNullish as Nullish } from "./is/nullish.ts";
19+
export { isNumber as Number } from "./is/number.ts";
20+
export { isObjectOf as ObjectOf } from "./is/object_of.ts";
21+
export { isOmitOf as OmitOf } from "./is/omit_of.ts";
22+
export { isParametersOf as ParametersOf } from "./is/parameters_of.ts";
23+
export { isPartialOf as PartialOf } from "./is/partial_of.ts";
24+
export { isPickOf as PickOf } from "./is/pick_of.ts";
25+
export { isPrimitive as Primitive } from "./is/primitive.ts";
26+
export { isReadonlyOf as ReadonlyOf } from "./is/readonly_of.ts";
27+
export { isRecord as Record } from "./is/record.ts";
28+
export { isRecordObject as RecordObject } from "./is/record_object.ts";
29+
export { isRecordObjectOf as RecordObjectOf } from "./is/record_object_of.ts";
30+
export { isRecordOf as RecordOf } from "./is/record_of.ts";
31+
export { isRequiredOf as RequiredOf } from "./is/required_of.ts";
32+
export { isSet as Set } from "./is/set.ts";
33+
export { isSetOf as SetOf } from "./is/set_of.ts";
34+
export { isStrictOf as StrictOf } from "./is/strict_of.ts";
35+
export { isString as String } from "./is/string.ts";
36+
export { isSymbol as Symbol } from "./is/symbol.ts";
37+
export { isSyncFunction as SyncFunction } from "./is/sync_function.ts";
38+
export { isTupleOf as TupleOf } from "./is/tuple_of.ts";
39+
export { isUndefined as Undefined } from "./is/undefined.ts";
40+
export { isUniformTupleOf as UniformTupleOf } from "./is/uniform_tuple_of.ts";
41+
export { isUnionOf as UnionOf } from "./is/union_of.ts";
42+
export { isUnknown as Unknown } from "./is/unknown.ts";

is/is.ts

Lines changed: 0 additions & 42 deletions
This file was deleted.

mod.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
export type * from "./type.ts";
22

33
export * from "./as/mod.ts";
4-
export * as as from "./as/as.ts";
4+
export * as as from "./as.ts";
55

66
export * from "./is/mod.ts";
7-
export * as is from "./is/is.ts";
7+
export * as is from "./is.ts";
88

99
export * from "./assert.ts";
1010
export * from "./ensure.ts";

0 commit comments

Comments
 (0)