@balte/emberplus-connection
Version:
Javascript implementation of the Ember+ automation protocol
12 lines (11 loc) • 329 B
TypeScript
import { EmberTypedValue } from '../types/types';
export { StreamEntry };
interface StreamEntry {
identifier: number;
value: EmberTypedValue;
}
export declare class StreamEntryImpl implements StreamEntry {
identifier: number;
value: EmberTypedValue;
constructor(identifier: number, value: EmberTypedValue);
}