/** * @license * Copyright Elegante All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://elegante.dev/license */ import { Document } from './types/query'; /** * A string representation of a pointer * which is a reference to another document * * @export * @interface Pointer */ export declare type Pointer = string; export declare function pointer(collection: string, object?: string | Document): T; export declare function pointerObjectFrom(value: string): { collection: string; objectId: string; };