lupine.web
Version:
lupine.web is a extremely fast, small size and lightweight frontend framework, using React TSX syntax.
10 lines (8 loc) • 349 B
text/typescript
import { IRequestContextProps } from './use-request-context-props';
// client side (browser) should be as the same as SSR's requestContext
export interface IToClientDelivery {
getWebEnv(): { [k: string]: string };
getWebSetting(): { [k: string]: string };
getRequestContext(): IRequestContextProps;
// getLang(): { [k: string]: string };
}