intentful
Version:
Create Custom Skills with less headache
12 lines (11 loc) • 430 B
TypeScript
import { ModelProvider } from '../../types';
export declare class Color implements ModelProvider<string> {
private readonly value;
private constructor();
toJSON(): string;
model(): string;
static expression(value: string): Color;
static literal(value: string): Color;
static hex(r: string, g: string, b: string, a?: string): Color;
static rgba(r: number, g: number, b: number, a: number): Color;
}