blob: 0f7e38d36c4976a61d314df314edf02a554768fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { LocalSimpleStringBlockParams, LocalSimpleStringBlock, LocalSimpleStringBlockJson } from "./internals/LocalSimpleStringBlock";
import { typeStore } from "./TypeStore";
export type TeletexStringParams = LocalSimpleStringBlockParams;
export type TeletexStringJson = LocalSimpleStringBlockJson;
export class TeletexString extends LocalSimpleStringBlock {
static {
typeStore.TeletexString = this;
}
public static override NAME = "TeletexString";
constructor(parameters: TeletexStringParams = {}) {
super(parameters);
this.idBlock.tagClass = 1; // UNIVERSAL
this.idBlock.tagNumber = 20; // TeletexString
}
}
|