Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
Signed-off-by: William So <polyipseity@gmail.com>
  • Loading branch information
polyipseity committed Jul 13, 2023
1 parent b2d3300 commit 104effc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sources/@types/obsidian.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/* eslint-disable @typescript-eslint/no-empty-interface */
import type { } from "obsidian"
import type { Private } from "obsidian-plugin-library"
import type { Private } from "@polyipseity/obsidian-plugin-library"

declare const PRIVATE_KEY: unique symbol
type PrivateKey = typeof PRIVATE_KEY
declare module "obsidian-plugin-library" {
declare module "@polyipseity/obsidian-plugin-library" {
interface PrivateKeys {
readonly [PRIVATE_KEY]: never
}
Expand Down
5 changes: 4 additions & 1 deletion sources/show-dotfiles.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { aroundIdentityFactory, revealPrivate } from "obsidian-plugin-library"
import {
aroundIdentityFactory,
revealPrivate,
} from "@polyipseity/obsidian-plugin-library"
import { identity, zip } from "lodash-es"
import stacktraceJs, { type StackFrame } from "stacktrace-js"
import { APP_FILENAME } from "./magic.js"
Expand Down

0 comments on commit 104effc

Please sign in to comment.