mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2025-10-12 07:34:58 +00:00
structure, layout and automation
This commit is contained in:
20
node_modules/node-sass/src/libsass/docs/api-importer-internal.md
generated
vendored
Normal file
20
node_modules/node-sass/src/libsass/docs/api-importer-internal.md
generated
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
```C
|
||||
// External import entry
|
||||
struct Sass_Import {
|
||||
char* imp_path; // path as found in the import statement
|
||||
char *abs_path; // path after importer has resolved it
|
||||
char* source;
|
||||
char* srcmap;
|
||||
// error handling
|
||||
char* error;
|
||||
size_t line;
|
||||
size_t column;
|
||||
};
|
||||
|
||||
// Struct to hold importer callback
|
||||
struct Sass_Importer {
|
||||
Sass_Importer_Fn importer;
|
||||
double priority;
|
||||
void* cookie;
|
||||
};
|
||||
```
|
Reference in New Issue
Block a user