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.
session-desktop/ts/node/signal.ts

13 lines
238 B
TypeScript

// 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,
};
};