mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-26 02:18:09 +00:00
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
"use strict";
|
|
|
|
const HTMLElementImpl = require("./HTMLElement-impl").implementation;
|
|
|
|
class HTMLParagraphElementImpl extends HTMLElementImpl { }
|
|
|
|
module.exports = {
|
|
implementation: HTMLParagraphElementImpl
|
|
};
|