Socket
Socket
Sign inDemoInstall

@glimmer/interfaces

Package Overview
Dependencies
Maintainers
12
Versions
282
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@glimmer/interfaces - npm Package Compare versions

Comparing version 0.79.2 to 0.79.3

17

dist/types/lib/runtime/vm.d.ts

@@ -7,2 +7,4 @@ import { Environment } from './environment';

import { Owner } from './owner';
import { GlimmerTreeChanges } from '../dom/changes';
import { ExceptionHandler } from './render';
/**

@@ -21,1 +23,16 @@ * This is used in the Glimmer Embedding API. In particular, embeddings

}
export interface UpdatingVM {
env: Environment;
dom: GlimmerTreeChanges;
alwaysRevalidate: boolean;
execute(opcodes: UpdatingOpcode[], handler: ExceptionHandler): void;
goto(index: number): void;
try(ops: UpdatingOpcode[], handler: ExceptionHandler | null): void;
throw(): void;
}
export interface UpdatingOpcode {
evaluate(vm: UpdatingVM): void;
}

10

dist/types/lib/stack.d.ts

@@ -13,11 +13,1 @@ import { Option } from './core';

}
export interface NonemptyStack<T> {
current: T;
size: number;
push(item: T): void;
pop(): T;
nthBack(from: number): Option<T>;
toArray(): T[];
}

2

dist/types/package.json
{
"name": "@glimmer/interfaces",
"version": "0.79.1",
"version": "0.79.2",
"repository": "https://github.com/glimmerjs/glimmer-vm/tree/master/packages/@glimmer/interfaces",

@@ -5,0 +5,0 @@ "types": "index.d.ts",

{
"name": "@glimmer/interfaces",
"version": "0.79.2",
"version": "0.79.3",
"repository": "https://github.com/glimmerjs/glimmer-vm/tree/master/packages/@glimmer/interfaces",

@@ -5,0 +5,0 @@ "types": "index.d.ts",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc