9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
import { z } from "zod"
|
|
|
|
export const SAS_TOKEN_STORAGE_KEY = "sas-x-scandic-token"
|
|
|
|
export const stateSchema = z.object({
|
|
intent: z.enum(["link", "unlink"]),
|
|
})
|
|
export type State = z.infer<typeof stateSchema>
|