mirror of
https://github.com/tale/headplane.git
synced 2026-07-27 16:18:57 +00:00
13 lines
228 B
TypeScript
13 lines
228 B
TypeScript
import { hp_getConfig } from './loader';
|
|
import { HeadplaneConfig } from './parser';
|
|
|
|
export interface AppContext {
|
|
context: HeadplaneConfig;
|
|
}
|
|
|
|
export default function appContext() {
|
|
return {
|
|
context: hp_getConfig(),
|
|
};
|
|
}
|