✅ 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.
26 lines
1.1 KiB
TypeScript
26 lines
1.1 KiB
TypeScript
/**
|
|
* The Buffer constructor returns instances of `Uint8Array` that have their
|
|
* prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of
|
|
* `Uint8Array`, so the returned instances will have all the node `Buffer` methods
|
|
* and the `Uint8Array` methods. Square bracket notation works as expected -- it
|
|
* returns a single octet.
|
|
*
|
|
* The `Uint8Array` prototype remains unmodified.
|
|
*/
|
|
declare function Buffer(arg: any, encodingOrOffset: any, length: any): any;
|
|
declare namespace Buffer {
|
|
var TYPED_ARRAY_SUPPORT: boolean;
|
|
var poolSize: number;
|
|
var from: (value: any, encodingOrOffset: any, length?: any) => any;
|
|
var alloc: (size: any, fill: any, encoding: any) => Uint8Array<any>;
|
|
var allocUnsafe: (size: any) => Uint8Array<any>;
|
|
var allocUnsafeSlow: (size: any) => Uint8Array<any>;
|
|
var isBuffer: (b: any) => boolean;
|
|
var compare: (a: any, b: any) => 0 | 1 | -1;
|
|
var isEncoding: (encoding: any) => boolean;
|
|
var concat: (list: any, length?: any) => Uint8Array<any>;
|
|
var byteLength: (string: any, encoding: any) => any;
|
|
}
|
|
|
|
export { Buffer };
|