ionian/src/route/context.ts
2023-06-01 14:18:53 +09:00

8 lines
174 B
TypeScript

export type ContentLocation = {
path: string;
type: string;
additional: object | undefined;
};
export interface ContentContext {
location: ContentLocation;
}