csx
Version:
Utility functions for TypeStyle
9 lines (8 loc) • 375 B
TypeScript
import { BoxFunction, BorderOptions } from './types';
/**
* Returns the value with '' around it. Any 's will be escaped \' in the output
*/
export declare function border(p: BorderOptions): string;
export declare const borderColor: BoxFunction<string>;
export declare const borderStyle: BoxFunction<string>;
export declare const borderWidth: BoxFunction<string | number>;