UNPKG

@atlaskit/adf-utils

Version:

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

9 lines (8 loc) 159 B
export type WithMark = { [prop: string]: any; marks?: Array<any>; type: any; }; export type WithAppliedMark<T, M> = T & { marks?: Array<M>; };