mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
15 lines
380 B
TypeScript
15 lines
380 B
TypeScript
import { Field, Message } from 'protobufjs'
|
|
|
|
import { SignaturePair } from './SignaturePair'
|
|
|
|
// https://www.npmjs.com/package/@apollo/protobufjs
|
|
// eslint-disable-next-line no-use-before-define
|
|
export class SignatureMap extends Message<SignatureMap> {
|
|
constructor() {
|
|
super({ sigPair: [] })
|
|
}
|
|
|
|
@Field.d(1, SignaturePair, 'repeated')
|
|
public sigPair: SignaturePair[]
|
|
}
|