1 | export * from './lib/array-utils';
|
2 | export { dict, isDict, isIndexable, StackImpl as Stack } from './lib/collections';
|
3 | export { beginTestSteps, endTestSteps, logStep, verifySteps } from './lib/debug-steps';
|
4 | export * from './lib/dom';
|
5 | export { default as intern } from './lib/intern';
|
6 | export { isSerializationFirstNode, SERIALIZATION_FIRST_NODE_STRING, } from './lib/is-serialization-first-node';
|
7 | export { assign, entries, keys, values } from './lib/object-utils';
|
8 | export * from './lib/string';
|
9 | export type FIXME<T, S extends string> = (T & S) | T;
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 | export declare const LOCAL_LOGGER: Console;
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 | export declare const LOGGER: Console;
|
26 | export declare function assertNever(value: never, desc?: string): never;
|