8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
export type ContentLocation = {
|
|
path: string;
|
|
type: string;
|
|
additional: object | undefined;
|
|
};
|
|
export interface ContentContext {
|
|
location: ContentLocation;
|
|
}
|