@kahi-ui/framework
Version:
Straight-forward Svelte UI for the Web
13 lines (12 loc) • 528 B
TypeScript
import type { ArrayEnum, LiteralObject } from "./util";
import { TOKENS_VIEWPORT } from "./viewports";
/**
* Represents viewport tokens to hide content that can be applied to Framework Components
*/
export declare const TOKENS_HIDDEN: {
readonly mobile: TOKENS_VIEWPORT.mobile;
readonly tablet: TOKENS_VIEWPORT.tablet;
readonly desktop: TOKENS_VIEWPORT.desktop;
readonly widescreen: TOKENS_VIEWPORT.widescreen;
};
export declare type PROPERTY_HIDDEN = boolean | ArrayEnum<LiteralObject<typeof TOKENS_HIDDEN>>;