6 lines
88 B
TypeScript
6 lines
88 B
TypeScript
type MaybePromise<T> = T | Promise<T>;
|
|
|
|
export type AppContext = {
|
|
tables: Table[];
|
|
};
|