9 lines
203 B
TypeScript
Executable File
9 lines
203 B
TypeScript
Executable File
export * from './auth';
|
|
export * from './public';
|
|
export * from './storage';
|
|
export * from './useFileUpload';
|
|
|
|
export type Result<T> =
|
|
| { success: true; data: T }
|
|
| { success: false; error: string };
|