13 lines
293 B
TypeScript
13 lines
293 B
TypeScript
// place files you want to import through the `$lib` alias in this folder.
|
|
|
|
export * from "./axios";
|
|
export * from "./user";
|
|
export * from "./companies";
|
|
|
|
/**
|
|
* @TODO
|
|
*
|
|
* - make companies library to interact with api
|
|
* - force an auth check on every single interaction or page change.
|
|
*/
|