mirror of
https://github.com/Afilmory/afilmory
synced 2026-04-24 14:55:29 +00:00
- Introduced a comprehensive `DEVELOPMENT.md` guide for contributors and self-hosters, detailing workspace layout and common commands. - Updated `README.md` to include links to the new development guide and improved deployment instructions. - Added new documentation files covering architecture, builder pipeline, configuration, and deployment strategies. - Implemented new storage provider documentation for Backblaze B2, Eagle, GitHub, and local storage options. - Enhanced the UI components with new features, including a navigation context and improved theme handling. - Removed outdated GitHub Action deployment documentation. Signed-off-by: Innei <tukon479@gmail.com>
7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
declare global {
|
|
/**
|
|
* This function is a macro, will replace in the build stage.
|
|
*/
|
|
export function tw(strings: TemplateStringsArray, ...values: any[]): string
|
|
}
|