mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
Fixed #3802 - Improve folder structure for nuxt configurations
This commit is contained in:
parent
851950270b
commit
f5fe822afb
563 changed files with 1703 additions and 1095 deletions
55
components/lib/terminal/Terminal.d.ts
vendored
Executable file
55
components/lib/terminal/Terminal.d.ts
vendored
Executable file
|
@ -0,0 +1,55 @@
|
|||
/**
|
||||
*
|
||||
* Terminal is a text based user interface.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/terminal)
|
||||
*
|
||||
* @module terminal
|
||||
*
|
||||
*/
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
/**
|
||||
* Defines valid properties in Terminal component.
|
||||
*/
|
||||
export interface TerminalProps {
|
||||
/**
|
||||
* Initial text to display on terminal.
|
||||
*/
|
||||
welcomeMessage?: string | undefined;
|
||||
/**
|
||||
* Prompt text for each command.
|
||||
*/
|
||||
prompt?: string | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid slots in Terminal component.
|
||||
*/
|
||||
export interface TerminalSlots {}
|
||||
|
||||
/**
|
||||
* Defines valid emits in Terminal component.
|
||||
*/
|
||||
export interface TerminalEmits {}
|
||||
|
||||
/**
|
||||
* **PrimeVue - Terminal**
|
||||
*
|
||||
* _Terminal is a text based user interface._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/terminal/)
|
||||
* --- ---
|
||||
* 
|
||||
*
|
||||
* @group Component
|
||||
*/
|
||||
declare class Terminal extends ClassComponent<TerminalProps, TerminalSlots, TerminalEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
Terminal: GlobalComponentConstructor<Terminal>;
|
||||
}
|
||||
}
|
||||
|
||||
export default Terminal;
|
Loading…
Add table
Add a link
Reference in a new issue