Skip to content

Commit

Permalink
API
Browse files Browse the repository at this point in the history
  • Loading branch information
afshin committed Nov 18, 2022
1 parent 6a54238 commit fb6b839
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions review/api/virtualdom.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ export class VirtualElement {
readonly children: ReadonlyArray<VirtualNode>;
readonly renderer: VirtualElement.IRenderer | undefined;
readonly tag: string;
readonly type: 'element';
readonly type: "element";
}

// @public (undocumented)
Expand Down Expand Up @@ -400,7 +400,7 @@ export type VirtualNode = VirtualElement | VirtualText;
export class VirtualText {
constructor(content: string);
readonly content: string;
readonly type: 'text';
readonly type: "text";
}

// (No @packageDocumentation comment for this package)
Expand Down

0 comments on commit fb6b839

Please sign in to comment.