Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanPiercey committed Feb 24, 2023
1 parent c55ae93 commit 35f29b6
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions packages/marko/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,10 @@ declare namespace Marko {
}

/** The top level api for a Marko Template. */
export abstract class Template<Input = { [attr: PropertyKey]: any }, Return = unknown> {
export abstract class Template<
Input = { [attr: PropertyKey]: any },
Return = unknown
> {
/** Creates a Marko compatible output stream. */
createOut(): Out;

Expand Down Expand Up @@ -318,6 +321,8 @@ declare namespace Marko {
};
}

export type NativeTagInput<Name extends keyof NativeTags> = NativeTags[Name]["input"];
export type NativeTagReturn<Name extends keyof NativeTags> = NativeTags[Name]["return"];
export type NativeTagInput<Name extends keyof NativeTags> =
NativeTags[Name]["input"];
export type NativeTagReturn<Name extends keyof NativeTags> =
NativeTags[Name]["return"];
}

0 comments on commit 35f29b6

Please # to comment.