UNPKG

375 BTypeScriptView Raw
1import { BoxFunction, BorderOptions } from './types';
2/**
3 * Returns the value with '' around it. Any 's will be escaped \' in the output
4 */
5export declare function border(p: BorderOptions): string;
6export declare const borderColor: BoxFunction<string>;
7export declare const borderStyle: BoxFunction<string>;
8export declare const borderWidth: BoxFunction<string | number>;