@opalkelly/frontpanel-platform-api
Version:
TypeScript definitions for Opal Kelly FrontPanel Platform API
20 lines (16 loc) • 515 B
text/typescript
/**
* Copyright (c) 2025 Opal Kelly Incorporated
*
* This source code is licensed under the FrontPanel license.
* See the LICENSE file found in the root directory of this project.
*/
import { BitCount } from "./CoreDataTypes";
import { EndpointAddress } from "./Endpoint";
/**
* Type representing the address of a Pipe endpoint.
*/
export type PipeAddress = EndpointAddress;
/**
* Type representing the width of a Pipe endpoint, measured in bits.
*/
export type PipeWidth = BitCount;