fix(interfaces): implement basic constructs for pagechecks

This commit is contained in:
Philipp Kunz 2019-11-30 10:18:08 +00:00
parent d5f95b8308
commit fb916aa884
4 changed files with 14 additions and 4 deletions

View File

@ -1,3 +1,5 @@
import * as plugins from './interfaces.plugins';
import * as pagechecks from './ul-interfaces.pagechecks';
export let standardExport = 'Hi there! :) This is an exported string';
export {
pagechecks
};

View File

@ -1,2 +0,0 @@
const removeme = {};
export { removeme };

View File

@ -0,0 +1,3 @@
export interface IPageCheckRequest {
}

View File

@ -0,0 +1,7 @@
export interface IPageCheckSimple {};
export interface IPageCheckAdvanced {};
export interface IPageCheckPWA {
}