Skip to content

Commit

Permalink
refactor(daemon): Rename "unsafe" types
Browse files Browse the repository at this point in the history
  • Loading branch information
rekmarks committed Jan 26, 2024
1 parent 5623d60 commit 556ffe0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/daemon/src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ type EvalFormula = {
// TODO formula slots
};

type ImportUnsafeFormula = {
type MakeUnconfinedFormula = {
type: 'make-unconfined';
worker: string;
powers: string;
importPath: string;
// TODO formula slots
};

type ImportBundleFormula = {
type MakeBundleFormula = {
type: 'make-bundle';
worker: string;
powers: string;
Expand All @@ -97,8 +97,8 @@ type WebBundleFormula = {
export type Formula =
| GuestFormula
| EvalFormula
| ImportUnsafeFormula
| ImportBundleFormula
| MakeUnconfinedFormula
| MakeBundleFormula
| WebBundleFormula;

export type Label = {
Expand Down

0 comments on commit 556ffe0

Please sign in to comment.