✅ COMPLETED: 1. Dockerfile uses port 80 (astro preview) 2. BaseLayout imports globals.css 3. globals.css with Tailwind v4 @theme syntax 4. index.astro has Header, Footer, FixedContact 5. All image references fixed to existing files 6. Hero uses hdpe_pipe_main.jpg 7. Product cards use hdpe001.jpg 8. pt-20 on main for fixed header ✅ TESTED LOCALLY: - Build: 15 pages in 1.27s - Docker build successful - Port 80 working - Images load - CSS works Ready for Easypanel deployment.
72 lines
1.1 KiB
TypeScript
72 lines
1.1 KiB
TypeScript
declare const clipboard: {
|
|
/**
|
|
Write (copy) to the clipboard asynchronously.
|
|
|
|
@param text - The text to write to the clipboard.
|
|
|
|
@example
|
|
```
|
|
import clipboard from 'clipboardy';
|
|
|
|
await clipboard.write('🦄');
|
|
|
|
await clipboard.read();
|
|
//=> '🦄'
|
|
```
|
|
*/
|
|
write(text: string): Promise<void>;
|
|
|
|
/**
|
|
Read (paste) from the clipboard asynchronously.
|
|
|
|
@example
|
|
```
|
|
import clipboard from 'clipboardy';
|
|
|
|
await clipboard.write('🦄');
|
|
|
|
await clipboard.read();
|
|
//=> '🦄'
|
|
```
|
|
*/
|
|
read(): Promise<string>;
|
|
|
|
/**
|
|
Write (copy) to the clipboard synchronously.
|
|
|
|
__Doesn't work in browsers.__
|
|
|
|
@param text - The text to write to the clipboard.
|
|
|
|
@example
|
|
```
|
|
import clipboard from 'clipboardy';
|
|
|
|
clipboard.writeSync('🦄');
|
|
|
|
clipboard.readSync();
|
|
//=> '🦄'
|
|
```
|
|
*/
|
|
writeSync(text: string): void;
|
|
|
|
/**
|
|
Read (paste) from the clipboard synchronously.
|
|
|
|
__Doesn't work in browsers.__
|
|
|
|
@example
|
|
```
|
|
import clipboard from 'clipboardy';
|
|
|
|
clipboard.writeSync('🦄');
|
|
|
|
clipboard.readSync();
|
|
//=> '🦄'
|
|
```
|
|
*/
|
|
readSync(): string;
|
|
};
|
|
|
|
export default clipboard;
|