This commit is contained in:
Philipp Kühn 2020-10-27 11:55:19 +01:00
parent b962890de5
commit 2fdaf724d4

View File

@ -8,7 +8,7 @@ export type Attribute = {
default: any,
rendered?: boolean,
renderHTML?: ((attributes: { [key: string]: any }) => any) | null,
parseHTML?: ((node: HTMLElement) => { [key: string]: any }) | null,
parseHTML?: ((element: HTMLElement) => { [key: string]: any }) | null,
}
export type Attributes = {