12 lines
296 B
TypeScript
12 lines
296 B
TypeScript
|
// Mimic the outer package export for usage in index.ts
|
||
|
// The outer exports can't be used as they now reference dist directly
|
||
|
import * as generic from "../cache/generic"
|
||
|
import * as user from "../cache/user"
|
||
|
import * as app from "../cache/appMetadata"
|
||
|
|
||
|
export = {
|
||
|
app,
|
||
|
user,
|
||
|
...generic,
|
||
|
}
|