UNPKG

@dark-engine/platform-desktop

Version:

Dark renderer to desktop platforms like Windows, Linux, macOS via Nodegui and Qt

6 lines (5 loc) 277 B
declare function styled(strings: TemplateStringsArray, ...args: Array<string | number>): string; type Style = Record<string, string>; type Config<T extends Style> = (x: typeof styled) => T; declare function useStyle<T extends Style>(config: Config<T>): T; export { useStyle };