add search, improve SLayout
This commit is contained in:
parent
ddb07a651e
commit
1dc5768640
11 changed files with 153 additions and 15 deletions
15
src/app.d.ts
vendored
15
src/app.d.ts
vendored
|
|
@ -1,10 +1,21 @@
|
|||
// See https://svelte.dev/docs/kit/types#app.d.ts
|
||||
|
||||
|
||||
// for information about these interfaces
|
||||
declare global {
|
||||
namespace App {
|
||||
// interface Error {}
|
||||
// interface Locals {}
|
||||
// interface PageData {}
|
||||
interface Locals {
|
||||
results?: object[],
|
||||
query?: string,
|
||||
me: UserEntry | null
|
||||
}
|
||||
interface PageData {
|
||||
site: ServerHealth | null,
|
||||
me: UserEntry | null,
|
||||
results?: object[],
|
||||
query?: string
|
||||
}
|
||||
// interface PageState {}
|
||||
// interface Platform {}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue