mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-29 11:53:55 +00:00
9 lines
209 B
JavaScript
9 lines
209 B
JavaScript
"use strict";
|
|
|
|
const HTMLElementImpl = require("./HTMLElement-impl").implementation;
|
|
|
|
class HTMLTableColElementImpl extends HTMLElementImpl { }
|
|
|
|
module.exports = {
|
|
implementation: HTMLTableColElementImpl
|
|
};
|