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

ListInputRuleAttributesGetter

A callback function to get the attributes for a list input rule.

type ListInputRuleAttributesGetter<T extends ListAttributes = ListAttributes> = (options: {
match: RegExpMatchArray;
attributes?: T;
}
) => T
;

§Type Parameters

§Type

§
(options: {
match: RegExpMatchArray;
attributes?: T;
}
) => T
[src]