summaryrefslogtreecommitdiffstats
path: root/comm/third_party/asn1js/src/internals/LocalSimpleStringValueBlock.ts
blob: f2ee09a8a3ff1abc3e53499a1c6ced81b525b847 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { ILocalStringValueBlock, LocalStringValueBlockParams, LocalStringValueBlockJson, LocalStringValueBlock } from "./LocalStringValueBlock";

export type ILocalSimpleStringValueBlock = ILocalStringValueBlock;
export type LocalSimpleStringValueBlockParams = LocalStringValueBlockParams;
export type LocalSimpleStringValueBlockJson = LocalStringValueBlockJson;

export class LocalSimpleStringValueBlock extends LocalStringValueBlock {

  public static override NAME = "SimpleStringValueBlock";

}