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 {
27
27
return input === 'true' ;
28
28
}
29
29
30
- export type KeyTransforms = Array < KeyTransform < string | undefined , unknown > > ;
30
+ export type KeyTransforms = KeyTransform < string | undefined , unknown > [ ] ;
31
31
32
32
export default function parseArgs < Args extends object > ( node : Code , transforms : KeyTransforms ) : Args {
33
33
let { lang, meta } = node ;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ function isZoeySays({ children }: Blockquote): boolean {
23
23
firstParagraph . value === ZOEY_SAYS ;
24
24
}
25
25
26
- async function render ( nodes : Array < BlockContent | DefinitionContent > , position ?: Position ) : Promise < HTML > {
26
+ async function render ( nodes : ( BlockContent | DefinitionContent ) [ ] , position ?: Position ) : Promise < HTML > {
27
27
let content = [ ] ;
28
28
29
29
for ( let node of nodes ) {
You can’t perform that action at this time.
0 commit comments