@dolittle/sdk.artifacts
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
16 lines (10 loc) • 526 B
text/typescript
// Copyright (c) Dolittle. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
import { keys, value } from './types';
export const firstKey: keys = ['first-key', 1, true];
export const firstValue: value = {};
export const secondKey: keys = ['second-key', 2, false];
export const secondValue: value = {};
export const thirdKey: keys = ['first-key', 2, true];
export const thirdValue: value = {};
export const unsetKey: keys = ['second-key', 2, true];