@carbon/ibm-products-web-components
Version:
Carbon for IBM Products Web Components
44 lines (43 loc) • 990 B
TypeScript
/**
* @license
*
* Copyright IBM Corp. 2025, 2025
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import { LitElement } from 'lit';
import { Kind } from './types';
export declare const blockClass = "c4p--full-page-error";
declare const elementName = "c4p-full-page-error";
/**
* FullPageError.
*
* @element c4p-full-page-error
*/
declare class CDSFullPageError extends LitElement {
static styles: any;
/**
* Sets the label text
*/
label: string;
/**
* Sets the description text
*/
description?: string;
/**
* Sets what kind of error it is. '404' | '403' | 'custom'
*/
kind: Kind;
/**
* Sets the title text
*/
title: string;
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
[elementName]: CDSFullPageError;
}
}
export default CDSFullPageError;