blob: 42f23ea7733d5db336817213d7def7e4cddb8b2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import { LocalBmpStringValueBlockParams, LocalBmpStringValueBlock, LocalBmpStringValueBlockJson } from "./internals/LocalBmpStringValueBlock";
import { typeStore } from "./TypeStore";
export type BmpStringParams = LocalBmpStringValueBlockParams;
export type BmpStringJson = LocalBmpStringValueBlockJson;
export class BmpString extends LocalBmpStringValueBlock {
static {
typeStore.BmpString = this;
}
public static override NAME = "BMPString";
constructor({
...parameters
}: BmpStringParams = {}) {
super(parameters);
this.idBlock.tagClass = 1; // UNIVERSAL
this.idBlock.tagNumber = 30; // BmpString
}
}
|