import { z } from "zod" export const SAS_TOKEN_STORAGE_KEY = "sas-x-scandic-token" // TODO nonce?? export const stateSchema = z.object({ intent: z.literal("link"), }) export type State = z.infer