first commit

This commit is contained in:
2020-02-02 15:24:30 +07:00
commit 61dfa00b20
2410 changed files with 152621 additions and 0 deletions

8
node_modules/ow/dist/lib/utils/has-items.d.ts generated vendored Normal file
View File

@@ -0,0 +1,8 @@
/**
* @hidden
*/
export interface CollectionLike<T> {
has(item: T): boolean;
}
declare const _default: <T>(source: CollectionLike<T>, items: T[], maxValues?: number) => true | T[];
export default _default;

3
node_modules/ow/dist/lib/utils/of-type-deep.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import { Predicate } from '../predicates/predicate';
declare const _default: (input: any, predicate: Predicate<any>) => string | boolean;
export default _default;

3
node_modules/ow/dist/lib/utils/of-type.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import { Predicate } from '../predicates/predicate';
declare const _default: <T>(source: IterableIterator<T> | Set<T> | T[], predicate: Predicate<T>) => string | boolean;
export default _default;