You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
238 B
TypeScript
13 lines
238 B
TypeScript
|
4 years ago
|
// The idea with this file is to make it webpackable for the style guide
|
||
|
|
|
||
|
|
import * as Data from '../../ts/data/data';
|
||
|
|
import * as Util from '../../ts/util';
|
||
|
|
|
||
|
|
export const setupSignal = () => {
|
||
|
|
Data.init();
|
||
|
|
|
||
|
|
return {
|
||
|
|
Util,
|
||
|
|
};
|
||
|
|
};
|