13 lines
550 B
TypeScript
Raw Normal View History

2025-04-19 15:38:48 +08:00
/**
* Defines properties on a `Object`. It make the assumption that underlying data is binary.
* @param self the `Object` to define properties on
* @param fields an array fields to define. Fields can contain:
* * `name` - the name of the properties
* * `length` - the number of bytes the field can have
* * `allowLess` - if the field can be less than the length
* * `allowEmpty`
* @param data data to be validated against the definitions
* @deprecated
*/
export declare const defineProperties: (self: any, fields: any, data?: any) => void;