You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cudr_slate-collaborative/packages/bridge/src/apply/annotation.ts

18 lines
336 B

export const addAnnotation = (doc: any, op: any) => {
return doc
}
export const removeAnnotation = (doc: any, op: any) => {
return doc
}
export const setAnnotation = (doc: any, op: any) => {
return doc
}
export default {
add_annotation: addAnnotation,
remove_annotation: removeAnnotation,
set_annotation: setAnnotation
}