/**
 * Copyright (c) Trimble Inc.
 * Licensed under the MIT License.
 */

/**
 * @interface Keyset
 * @description Interface for Keyset
 */
export interface Keyset {
    kty: string
    n: string
    e: string
    use: string
    x5c: []
    x5t: string
}