mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
9 lines
272 B
TypeScript
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
|
|
);
|