UNPKG

@dfinity/gix-components

Version:
9 lines (8 loc) 268 B
/// <reference types="svelte" /> import type { OnEventCallback } from "../types/event-modifiers"; interface Props { onBack: OnEventCallback; } declare const Back: import("svelte").Component<Props, {}, "">; type Back = ReturnType<typeof Back>; export default Back;