coolify/src/lib/store.ts

8 lines
210 B
TypeScript
Raw Normal View History

2022-04-06 19:51:19 +00:00
import { writable, type Writable } from 'svelte/store';
2022-04-06 19:51:19 +00:00
export const gitTokens: Writable<{ githubToken: string | null; gitlabToken: string | null }> =
writable({
githubToken: null,
gitlabToken: null
});