11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
import { SiteConfig } from "../../../types";
|
|
type Params = {
|
|
userId?: string | number;
|
|
};
|
|
type Return = {
|
|
appConfig: SiteConfig;
|
|
userConfig: SiteConfig | null;
|
|
};
|
|
export default function grabConfig(params?: Params): Return;
|
|
export {};
|