frontend for xcvr appview
at main 403 B view raw
1// See https://svelte.dev/docs/kit/types#app.d.ts 2 3import type { Channel } from "$lib/types"; 4import { WSContext } from "$lib/wscontext.svelte"; 5 6// for information about these interfaces 7declare global { 8 namespace App { 9 // interface Error {} 10 // interface Locals {} 11 interface PageData { 12 channels: Array<ChannelView> 13 } 14 // interface PageState {} 15 // interface Platform {} 16 } 17} 18 19export { };