Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DecorationAttrs

A set of attributes to add to a decorated node. Most properties simply directly correspond to DOM attributes of the same name, which will be set to the property's value. These are exceptions:

type DecorationAttrs = {
[attribute: string]: string | undefined;
nodeName?: string;
class?: string;
style?: string;
}
;

§Type

§
{
[attribute: string]: string | undefined;
nodeName?: string;
class?: string;
style?: string;
}
[src]