mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-14 03:54:46 +00:00
@@ -18,4 +18,25 @@ export type Template = {
|
||||
|
||||
export type Store = {
|
||||
get: () => any;
|
||||
};
|
||||
|
||||
export type PageComponent = {
|
||||
default?: boolean;
|
||||
name: string;
|
||||
file: string;
|
||||
};
|
||||
|
||||
export type Page = {
|
||||
pattern: RegExp;
|
||||
parts: Array<{
|
||||
component: PageComponent;
|
||||
params: string[];
|
||||
}>
|
||||
};
|
||||
|
||||
export type ServerRoute = {
|
||||
name: string;
|
||||
pattern: RegExp;
|
||||
file: string;
|
||||
params: string[];
|
||||
};
|
||||
Reference in New Issue
Block a user