geostyler
Version:
Framework for styling geodata
15 lines (14 loc) • 478 B
TypeScript
import { FunctionCall } from 'geostyler-style';
export type ArgumentType = 'number' | 'string' | 'boolean' | 'unknown' | 'case' | 'step';
export type FunctionConfig = {
name: FunctionCall<any>['name'];
type: 'number' | 'string' | 'boolean' | 'unknown';
description?: string;
args?: {
infinite?: boolean;
type: ArgumentType;
placeholder?: string;
label?: string;
}[];
};
export declare const functionConfigs: FunctionConfig[];