File

src/modules/breadcrumb/components/breadcrumb-path.intf.ts

Description

Interface that will define a path used in the StarkBreadcrumbComponent

Index

Properties

Properties

id
id: string
Type : string

The unique id to be given to the link of this breadcrumb path

state
state: string
Type : string

The name of the state that will be navigated to

stateParams
stateParams: literal type
Type : literal type

The params needed for the state

translationKey
translationKey: string
Type : string

The key used to translate the label of the specific path. If empty, the path will be taken instead

export interface StarkBreadcrumbPath {
	/**
	 * The unique id to be given to the link of this breadcrumb path
	 */
	id: string;

	/**
	 * The name of the state that will be navigated to
	 */
	state: string;

	/**
	 * The params needed for the state
	 */
	stateParams: { [param: string]: any };

	/**
	 * The key used to translate the label of the specific path. If empty, the path will be taken instead
	 */
	translationKey: string;
}

results matching ""

    No results matching ""