UNPKG

@atlaskit/adf-utils

Version:

Set of utilities to traverse, modify and create ADF documents.

7 lines (6 loc) 264 B
export type Value = string | number | boolean | undefined | null; export type ValueReplacer<V extends Value> = (value: V) => V; export type ValueReplacements = { href: ValueReplacer<string>; }; export declare const defaultValueReplacements: ValueReplacements;