1 | ;
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | exports.Volume = void 0;
|
4 | const jsonInstruction_1 = require("../jsonInstruction");
|
5 | class Volume extends jsonInstruction_1.JSONInstruction {
|
6 | constructor(document, range, dockerfile, escapeChar, instruction, instructionRange) {
|
7 | super(document, range, dockerfile, escapeChar, instruction, instructionRange);
|
8 | }
|
9 | }
|
10 | exports.Volume = Volume;
|