File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export function ToBool(input: string): boolean {
2727 return input === 'true' ;
2828}
2929
30- export type KeyTransforms = Array < KeyTransform < string | undefined , unknown > > ;
30+ export type KeyTransforms = KeyTransform < string | undefined , unknown > [ ] ;
3131
3232export default function parseArgs < Args extends object > ( node : Code , transforms : KeyTransforms ) : Args {
3333 let { lang, meta } = node ;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ function isZoeySays({ children }: Blockquote): boolean {
2323 firstParagraph . value === ZOEY_SAYS ;
2424}
2525
26- async function render ( nodes : Array < BlockContent | DefinitionContent > , position ?: Position ) : Promise < HTML > {
26+ async function render ( nodes : ( BlockContent | DefinitionContent ) [ ] , position ?: Position ) : Promise < HTML > {
2727 let content = [ ] ;
2828
2929 for ( let node of nodes ) {
You can’t perform that action at this time.
0 commit comments