fix(core): update
This commit is contained in:
@ -1,3 +1 @@
|
||||
import * as plugins from './smarturl.plugins';
|
||||
|
||||
export let standardExport = 'Hi there! :) This is an exported string';
|
||||
export * from './smarturl.classes.smarturl';
|
||||
|
7
ts/smarturl.classes.smarturl.ts
Normal file
7
ts/smarturl.classes.smarturl.ts
Normal file
@ -0,0 +1,7 @@
|
||||
import * as plugins from './smarturl.plugins';
|
||||
|
||||
export class Smarturl {
|
||||
public parseUrl(urlArg: string) {
|
||||
return plugins.url.parse(urlArg);
|
||||
}
|
||||
}
|
@ -1,2 +1,4 @@
|
||||
const removeme = {};
|
||||
export { removeme };
|
||||
// node native
|
||||
import * as url from 'url';
|
||||
|
||||
export { url };
|
||||
|
Reference in New Issue
Block a user