fix: add jsdoc comments to models
This commit is contained in:
committed by
Stevan Freeborn
parent
e97ee15387
commit
07ec44a0ad
@@ -1,7 +1,16 @@
|
||||
import { RecordValueType } from '../enums/RecordValueType.js';
|
||||
import { RecordValue } from './RecordValue.js';
|
||||
|
||||
/**
|
||||
* @class GuidListRecordValue - Represents a guid list record value.
|
||||
*/
|
||||
export class GuidListRecordValue extends RecordValue<string[]> {
|
||||
/**
|
||||
* @constructor - Creates a new instance of GuidListRecordValue.
|
||||
* @param {number} fieldId - The id of the field.
|
||||
* @param {string[]} value - The value of the field.
|
||||
* @returns {GuidListRecordValue} - A new instance of GuidListRecordValue.
|
||||
*/
|
||||
constructor(fieldId: number, value: string[]) {
|
||||
super(RecordValueType.GuidList, fieldId, value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user