Fixed #3802 - Improve folder structure for nuxt configurations

This commit is contained in:
mertsincan 2023-03-26 06:22:57 +01:00
parent 851950270b
commit f5fe822afb
563 changed files with 1703 additions and 1095 deletions

55
components/lib/terminal/Terminal.d.ts vendored Executable file
View 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/)
* --- ---
* ![Primevue](https://primefaces.org/cdn/primevue/images/logo-100.png)
*
* @group Component
*/
declare class Terminal extends ClassComponent<TerminalProps, TerminalSlots, TerminalEmits> {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
Terminal: GlobalComponentConstructor<Terminal>;
}
}
export default Terminal;