nit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import type { Value } from "$lib/utils"
|
||||
|
||||
export type GetInitialAndModifiedValues = (() => SavedAndModifiedValue) | undefined
|
||||
|
||||
export type SavedAndModifiedValue = {
|
||||
savedValue: Value | undefined
|
||||
modifiedValue: Value | undefined
|
||||
}
|
||||
@@ -14,6 +14,7 @@
|
||||
import { tick } from 'svelte'
|
||||
import { writable } from 'svelte/store'
|
||||
import type { ScheduleTrigger } from '$lib/components/triggers'
|
||||
import type { GetInitialAndModifiedValues } from '$lib/components/common/confirmationModal/unsavedTypes'
|
||||
|
||||
let nodraft = $page.url.searchParams.get('nodraft')
|
||||
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
import DiffDrawer from '$lib/components/DiffDrawer.svelte'
|
||||
import UnsavedConfirmationModal from '$lib/components/common/confirmationModal/UnsavedConfirmationModal.svelte'
|
||||
import type { ScheduleTrigger } from '$lib/components/triggers'
|
||||
import type { GetInitialAndModifiedValues } from '$lib/components/common/confirmationModal/unsavedTypes'
|
||||
|
||||
let version: undefined | number = undefined
|
||||
let nodraft = $page.url.searchParams.get('nodraft')
|
||||
|
||||
Reference in New Issue
Block a user