mirror of
https://github.com/ershisan99/coolify.git
synced 2026-01-02 20:49:29 +00:00
9 lines
276 B
TypeScript
9 lines
276 B
TypeScript
import { writable, type Writable } from 'svelte/store';
|
|
|
|
export const gitTokens: Writable<{ githubToken: string | null; gitlabToken: string | null }> =
|
|
writable({
|
|
githubToken: null,
|
|
gitlabToken: null
|
|
});
|
|
export const disabledButton: Writable<boolean> = writable(false);
|