Files
console/src/lib/stores/specifications.ts
T
2024-08-19 18:40:08 +09:00

9 lines
272 B
TypeScript

import { page } from '$app/stores';
import type { Models } from '@appwrite.io/console';
import { derived } from 'svelte/store';
export const specificationsList = derived(
page,
async ($page) => (await $page.data.specificationsList) as Models.SpecificationList
);