UNPKG

@barba/core

Version:

Create badass, fluid and smooth transition between your website's pages

13 lines (12 loc) 274 B
/** * @module typings/core */ import { IGenericObject } from '.'; export interface IUrlBase { path: string | undefined; hash: string | undefined; query: IGenericObject; } export interface IUrlFull extends IUrlBase { href: string | undefined; }