UNPKG

@dark-engine/platform-desktop

Version:

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

9 lines (8 loc) 542 B
import { type Container } from '../shared'; declare function capitalize<T extends string>(value: T): Capitalize<T>; declare function createSetterName<T extends string>(value: T): `set${Capitalize<T>}`; declare function detectisValidURL(value: string): boolean; declare function throwUnsupported(value: object): void; declare function detectIsContainer(element: unknown): element is Container; declare const illegal: (x: string) => void; export { capitalize, createSetterName, detectisValidURL, throwUnsupported, detectIsContainer, illegal };