mirror of
https://github.com/TriliumNext/Trilium.git
synced 2025-12-11 14:01:38 -06:00
chore(build-docs): fix typecheck issues
This commit is contained in:
parent
15e240ac33
commit
3ac248169f
@ -1,4 +1,4 @@
|
|||||||
import { BNote } from "../../services/backend_script_entrypoint";
|
import BNote from '../../becca/entities/bnote.js';
|
||||||
import cls from "../../services/cls";
|
import cls from "../../services/cls";
|
||||||
import { buildNote } from "../../test/becca_easy_mocking";
|
import { buildNote } from "../../test/becca_easy_mocking";
|
||||||
import { processContent } from "./clipper";
|
import { processContent } from "./clipper";
|
||||||
|
|||||||
@ -9,7 +9,7 @@ import log from '../../log.js';
|
|||||||
import becca from '../../../becca/becca.js';
|
import becca from '../../../becca/becca.js';
|
||||||
import notes from '../../notes.js';
|
import notes from '../../notes.js';
|
||||||
import attributes from '../../attributes.js';
|
import attributes from '../../attributes.js';
|
||||||
import type { BNote } from '../../backend_script_entrypoint.js';
|
import BNote from '../../../becca/entities/bnote.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Definition of the note creation tool
|
* Definition of the note creation tool
|
||||||
|
|||||||
@ -9,7 +9,7 @@ import searchService from "./search/services/search.js";
|
|||||||
import SearchContext from "./search/search_context.js";
|
import SearchContext from "./search/search_context.js";
|
||||||
import { LBTPL_NOTE_LAUNCHER, LBTPL_CUSTOM_WIDGET, LBTPL_SPACER, LBTPL_SCRIPT } from "./hidden_subtree.js";
|
import { LBTPL_NOTE_LAUNCHER, LBTPL_CUSTOM_WIDGET, LBTPL_SPACER, LBTPL_SCRIPT } from "./hidden_subtree.js";
|
||||||
import { t } from "i18next";
|
import { t } from "i18next";
|
||||||
import { BNote } from "./backend_script_entrypoint.js";
|
import BNote from '../becca/entities/bnote.js';
|
||||||
import { SaveSearchNoteResponse, SaveSqlConsoleResponse } from "@triliumnext/commons";
|
import { SaveSearchNoteResponse, SaveSqlConsoleResponse } from "@triliumnext/commons";
|
||||||
|
|
||||||
function getInboxNote(date: string) {
|
function getInboxNote(date: string) {
|
||||||
|
|||||||
@ -16,7 +16,7 @@ import { join } from "path";
|
|||||||
import { readFileSync } from "fs";
|
import { readFileSync } from "fs";
|
||||||
import { highlightAuto } from "@triliumnext/highlightjs";
|
import { highlightAuto } from "@triliumnext/highlightjs";
|
||||||
import becca from "../becca/becca.js";
|
import becca from "../becca/becca.js";
|
||||||
import { BAttachment } from "../services/backend_script_entrypoint.js";
|
import BAttachment from '../becca/entities/battachment.js';
|
||||||
import SAttachment from "./shaca/entities/sattachment.js";
|
import SAttachment from "./shaca/entities/sattachment.js";
|
||||||
import { sanitizeUrl } from "@braintree/sanitize-url";
|
import { sanitizeUrl } from "@braintree/sanitize-url";
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user