sec-edgar-toolkit
Version:
Open source toolkit to facilitate working with the SEC EDGAR database
14 lines • 445 B
JavaScript
;
/**
* Type definitions for SEC ownership forms (Forms 3, 4, and 5)
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.OwnershipFormParseError = void 0;
class OwnershipFormParseError extends Error {
constructor(message) {
super(message);
this.name = 'OwnershipFormParseError';
}
}
exports.OwnershipFormParseError = OwnershipFormParseError;
//# sourceMappingURL=ownership-forms.js.map